CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 搜索资源 - depth first

搜索资源列表

  1. queen8

    0下载:
  2. 汇编程序实现: 程序功能:用深度优先搜索法解决八皇后问题并打印结果. 列数行数分别用1-8标记.所以八皇后的位置申请了9个 调试感慨:汇编调试实在麻烦,不像C中在任何地方加个printf就可以知道 哪错了.跳来跳去的,不知哪里死循环了,实在不好调试. -Assembler to achieve: program features: Using depth-first search method to solve the eight queens prob
  3. 所属分类:assembly language

    • 发布日期:2017-03-30
    • 文件大小:2041
    • 提供者:王明杰
  1. creatgraph

    0下载:
  2. 图的建立和图的广度深度优先遍历(有向图和无向图)-Map creation and map the breadth of depth-first traversal (with the map and undirected graph)
  3. 所属分类:Data structs

    • 发布日期:2017-03-29
    • 文件大小:1874
    • 提供者:杨鹏
  1. Battlefield_C_2008

    0下载:
  2. This application is a battlefield simulator game with three types of units: Infantry, Cavalry, and Artillery. The map consists of several different terrain types lined in a six-sided-square grid as seen in many turn-based video games. The computer pl
  3. 所属分类:Game Engine

    • 发布日期:2017-03-28
    • 文件大小:467899
    • 提供者:vddh
  1. main

    0下载:
  2. Descr iption: 采用邻接表表示有向图,完成图的创建、图的深度优先遍历、图的广度优先遍历操作。其中图的顶点信息是字符型,图中顶点序号按字符顺序排列,边的输入按照边的顶点序号从小到大的顺序排列,如下图的边的输入顺序为0 1,0 2,0 3,1 2,1 3,2 4,3 4共七条边,邻接表的边结点采用头插法。本输入样例中所用的图如下所示: Input Format: 第一行输入两个值,第一个是图中顶点的个数,第二个是图中边的条数 第二行输入各顶点的信息,即输入每个顶点字
  3. 所属分类:Windows Develop

    • 发布日期:2017-03-29
    • 文件大小:1564
    • 提供者:kernel
  1. main

    2下载:
  2. 采用邻接矩阵表示无向图,完成图的创建、图的深度优先遍历、图的广度优先遍历操作。其中图的顶点信息是字符型,图中顶点序号按字符顺序排列。本输入样例中所用的图如下所示: Input Format: 第一行输入两个值,第一个是图中顶点的个数,第二个是图中边的条数 第二行输入各顶点的信息,即输入每个顶点字符 第三行开始输入每条边,每条边的形式为两个顶点的序号,中间以空格隔开,输入完一条边换行 Output format: 首先输出图的顶点信息,输出完毕换行 接着输出图的邻
  3. 所属分类:Windows Develop

    • 发布日期:2017-03-29
    • 文件大小:2700
    • 提供者:kernel
  1. shenduyouxiansousuoqiumigong

    0下载:
  2. 深度优先搜索求迷宫问题 采用深度优先搜索的方法求解迷宫问题,方便快捷-Depth-first search order to the maze problem using depth-first search method for solving a maze problem, convenient and quick
  3. 所属分类:Data structs

    • 发布日期:2017-04-04
    • 文件大小:693
    • 提供者:李朗
  1. 7-2-1

    0下载:
  2. 图的基本运算,包括邻接矩阵,邻接表存储。还有图的深度优先,广度优先算法,老师写的-Map basic operations, including the adjacency matrix, adjacency list is stored. There are also a depth-first, breadth-first algorithm, the teacher wrote
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-08
    • 文件大小:1701
    • 提供者:qqswin
  1. sj

    0下载:
  2. 数据结构课程设计:深度优先和广度优先分别遍历树-Data Structure Course Design: Depth-first and breadth-first traversal tree, respectively
  3. 所属分类:Data structs

    • 发布日期:2017-04-03
    • 文件大小:1365
    • 提供者:jiang li
  1. Graph

    0下载:
  2. 1.建立无向网的邻接矩阵。 要求:从键盘输入无向网的顶点数和边数;然后以“顶点1,顶点2,权值”的方式输入图的各边,建立邻接矩阵存储,并输出各顶点和邻接矩阵。 2.对无向网进行深度优先遍历,输出遍历序列。 3.判断给定的无向网是否是连通的? 要求:从键盘上输入出发点进行搜索遍历,输出遍历序列。 -1. The establishment of the network adjacency matrix. Requirements: No input from the ke
  3. 所属分类:Data structs

    • 发布日期:2017-03-31
    • 文件大小:1762
    • 提供者:张敏
  1. Traversing_Graph

    0下载:
  2. 树的邻接表表示和邻接矩阵表示,以及图的广度优先和深度优先遍历。-Tree adjacency list representation and adjacency matrix representation, and the graph breadth-first and depth-first traversal.
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-01
    • 文件大小:300606
    • 提供者:董玉玺
  1. BFSDFS.cpp

    0下载:
  2. to implement breadth first search and depth first searh
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-02
    • 文件大小:5628
    • 提供者:sm89
  1. graph

    0下载:
  2. 用邻接矩阵法建一无向连通图(顶点信息为字符),分别用dfs(深度优先搜索)和bfs(广度优先搜索)遍历,输出图中顶点信息并验证。-Adjacency matrix to build an undirected connected graph (vertex information for characters), respectively dfs (depth-first search), and bfs (breadth-first search) traversal, the output
  3. 所属分类:software engineering

    • 发布日期:2017-03-29
    • 文件大小:4059
    • 提供者:fanfausun
  1. directed_network

    0下载:
  2. 以邻接矩阵的方式确定有向网,完成: A.建立并显示出它的邻接链表; B.以非递归方式进行深度优先遍历,显示遍历的结果,(并随时显示栈的入出情况); C.对该图进行拓补排序,显示拓补排序的结果,并随时显示入度域的变化情况; D.给出某一确定顶点到所有其他顶点的最短路径-Adjacency matrix to determine a directed network, the completion of: A. To establish and demonstrate its adj
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-03
    • 文件大小:3454
    • 提供者:li
  1. ai1

    0下载:
  2. 带回溯的深度优先策略:解决经典野人传教士过河问题的求解:三个修道士和三个野人过河,船一次最多只能载两个人,在任何时候修道士的人数不能少于野人人数,否则野人会吃掉修道士。找出六个人顺利过河的所有方案。 采用带回溯的深度优先搜索策略,共定义了7种合法操作{2,0,0},{1,0,0},{1,1,0},{0,1,0},{0,2,0},{0,1,1},{1,0,1}代表上船的人数,根据船所在位置决定在状态上是加或者减操作。扩展结点时按顺序应用操作,知道回溯到初始状态且所有操作用完,程序结束。-Wi
  3. 所属分类:AI-NN-PR

    • 发布日期:2017-03-25
    • 文件大小:3026
    • 提供者:jyll
  1. tree

    0下载:
  2. tree.depth first search. visual c++. -tree.depth first search. visual c++. rubish
  3. 所属分类:Windows Develop

    • 发布日期:2017-03-31
    • 文件大小:647
    • 提供者:tracking
  1. dfs

    0下载:
  2. search algorithm, depth first search
  3. 所属分类:Mathimatics-Numerical algorithms

    • 发布日期:2017-04-11
    • 文件大小:1148
    • 提供者:Wiccan
  1. dfs

    0下载:
  2. 深度优先搜索算法DFS的实现,1.如果有可能,访问一个领接的未访问的节点,标记它,并把它放入栈中。 2 当不能执行规则 1 时,如果栈不为空,则从栈中弹出一个元素。 3 如果不能执行规则 1 和规则 2 时,则完成了遍历。-Depth-first search algorithm DFS implementation, 1. If possible, visit a collar then outstanding access node, mark it and put it into the
  3. 所属分类:Data structs

    • 发布日期:2017-04-02
    • 文件大小:623
    • 提供者:陈源
  1. depthfirstsearchexample

    0下载:
  2. A java scr ipt that is a depth first search example.
  3. 所属分类:JavaScript

    • 发布日期:2017-04-10
    • 文件大小:898
    • 提供者:weston
  1. DFS_-_A_Different_View

    0下载:
  2. Depth First Search with a different view of its functions.
  3. 所属分类:Mathimatics-Numerical algorithms

    • 发布日期:2017-04-06
    • 文件大小:72620
    • 提供者:Hydrae
  1. yxss

    0下载:
  2. 广 度 优 先 搜 索 及 深 度 优 先 搜 索-Breadth-first search and depth-first search
  3. 所属分类:Windows Develop

    • 发布日期:2017-03-29
    • 文件大小:1693
    • 提供者:孙延飞
« 1 2 ... 5 6 7 8 9 1011 12 13 14 15 ... 43 »
搜珍网 www.dssz.com